From fad1a9cb5ae3b45376b02a39d045f666dde9d79f Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Tue, 1 Dec 2015 05:24:42 +0100 Subject: [PATCH] dcmtk-www removed Upstream removed support for the www component and consequently the according package was removed. --- debian/apache.conf | 9 -------- debian/control | 18 --------------- debian/dcmtk-www.README.Debian | 13 ----------- debian/dcmtk-www.dirs | 1 - debian/dcmtk-www.docs | 1 - debian/dcmtk-www.install | 5 ----- debian/dcmtk-www.links | 1 - debian/dcmtk-www.postinst | 40 ---------------------------------- debian/dcmtk-www.postrm | 38 -------------------------------- 9 files changed, 126 deletions(-) delete mode 100644 debian/apache.conf delete mode 100644 debian/dcmtk-www.README.Debian delete mode 100644 debian/dcmtk-www.dirs delete mode 100644 debian/dcmtk-www.docs delete mode 100644 debian/dcmtk-www.install delete mode 100644 debian/dcmtk-www.links delete mode 100644 debian/dcmtk-www.postinst delete mode 100644 debian/dcmtk-www.postrm diff --git a/debian/apache.conf b/debian/apache.conf deleted file mode 100644 index 39a5efa8..00000000 --- a/debian/apache.conf +++ /dev/null @@ -1,9 +0,0 @@ -# dcmtk default Apache configuration - -Alias /dcmtk_wlm /usr/share/dcmtk/www/ -ScriptAlias /dcmtk /usr/lib/dcmtk/cgi-bin/ - - - AllowOverride None - Options +ExecCGI - diff --git a/debian/control b/debian/control index fb53c1a0..5e913e90 100644 --- a/debian/control +++ b/debian/control @@ -84,24 +84,6 @@ Description: OFFIS DICOM toolkit development libraries and headers . Note: This version was compiled with libssl support. -Package: dcmtk-www -Architecture: any -Section: web -Depends: dcmtk, - ${misc:Depends}, - ${perl:Depends}, - ${shlibs:Depends} -Recommends: apache2 | httpd -Description: OFFIS DICOM toolkit worklist www server application - DCMTK includes a collection of libraries and applications for examining, - constructing and converting DICOM image files, handling offline media, - sending and receiving images over a network connection, as well as - demonstrative image storage and worklist servers. - . - This package contains the DICOM basic worklist management web server - application. You only need to install this if you want to manage worklist - entries using a web browser. - Package: dcmtk-doc Architecture: all Section: doc diff --git a/debian/dcmtk-www.README.Debian b/debian/dcmtk-www.README.Debian deleted file mode 100644 index bd1bf261..00000000 --- a/debian/dcmtk-www.README.Debian +++ /dev/null @@ -1,13 +0,0 @@ -Web interface for the OFFIS DICOM ToolKit in Debian -=================================================== - -Please make sure you read the file wwwapp.txt in this directory. - -Hint: Apache is configured in this way that you can either - point your browser to - - http://localhost/cgi-bin/dcmtk_wlm/main.pl - - or - - http://localhost/dcmtk_wlm/main.pl diff --git a/debian/dcmtk-www.dirs b/debian/dcmtk-www.dirs deleted file mode 100644 index fcd24898..00000000 --- a/debian/dcmtk-www.dirs +++ /dev/null @@ -1 +0,0 @@ -/etc/apache2/conf-available diff --git a/debian/dcmtk-www.docs b/debian/dcmtk-www.docs deleted file mode 100644 index a20f6ea7..00000000 --- a/debian/dcmtk-www.docs +++ /dev/null @@ -1 +0,0 @@ -dcmwlm/docs/wwwapp.txt diff --git a/debian/dcmtk-www.install b/debian/dcmtk-www.install deleted file mode 100644 index eff3c32b..00000000 --- a/debian/dcmtk-www.install +++ /dev/null @@ -1,5 +0,0 @@ -debian/apache.conf etc/dcmtk -usr/bin/preplock usr/lib/dcmtk/cgi-bin -usr/bin/readoviw usr/lib/dcmtk/cgi-bin -usr/bin/readwlst usr/lib/dcmtk/cgi-bin -usr/bin/writwlst usr/lib/dcmtk/cgi-bin diff --git a/debian/dcmtk-www.links b/debian/dcmtk-www.links deleted file mode 100644 index 9343367f..00000000 --- a/debian/dcmtk-www.links +++ /dev/null @@ -1 +0,0 @@ -usr/lib/dcmtk/cgi-bin usr/lib/cgi-bin/dcmtk_wlm diff --git a/debian/dcmtk-www.postinst b/debian/dcmtk-www.postinst deleted file mode 100644 index 1c1438aa..00000000 --- a/debian/dcmtk-www.postinst +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -e -# postinst script for dcmtk-www - -pkg=dcmtk - -apache_install() { - webserver=apache2 - if [ -d /etc/$webserver/conf-available ] && [ ! -e /etc/$webserver/conf-available/${pkg}.conf ]; then - ln -s ../../${pkg}/apache.conf /etc/$webserver/conf-available/${pkg}.conf - # Restart webserver to register configuration for dcmtk if config is considered to be OK - if ${webserver}ctl configtest 2>/dev/null; then - if which invoke-rc.d ; then - invoke-rc.d $webserver reload 3>/dev/null || true - else - /etc/init.d/$webserver reload 3>/dev/null || true - fi - else - echo "Your $webserver configuration is broken, so we're not restarting it for you." - fi - - fi -} - -case "$1" in - configure) - apache_install - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 diff --git a/debian/dcmtk-www.postrm b/debian/dcmtk-www.postrm deleted file mode 100644 index 0db3f287..00000000 --- a/debian/dcmtk-www.postrm +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh -# postrm script for dcmtk-www - -set -e - -pkg=dcmtk - -case "$1" in - purge|remove|upgrade) - # Restart Apache to register configuration for dcmtk - if [ "$1" = "purge" ] ; then - if [ -L /etc/apache2/conf-available/${pkg}.conf ] ; then - rm -f /etc/apache2/conf-available/${pkg}.conf - fi - fi - if apache2ctl configtest 2>/dev/null; then - if which invoke-rc.d ; then - invoke-rc.d apache2 reload 3>/dev/null || true - else - /etc/init.d/apache2 reload 3>/dev/null || true - fi - else - echo "Your apache2 configuration is broken, so we're not restarting it for you." - fi - ;; - - failed-upgrade|abort-install|abort-upgrade|disappear) - ;; - - *) - echo "postrm called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 -- 2.30.2